home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Includes / AEAHandlerQuit.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  416 b   |  21 lines

  1. /*    =================
  2.  *    AEAHandlerQuit.hh
  3.  *    =================
  4.  *    
  5.  *    Implemented by AEAHandlerQuit.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "AEAHandler.hh"
  11.  
  12. class AEADescAppleEvent;
  13.  
  14. class AEAHandlerQuit : public AEAHandler {
  15. public:
  16.     AEAHandlerQuit();
  17.     virtual ~AEAHandlerQuit() {}
  18.     virtual void HandleEventSelf(const AEADescAppleEvent &inAppleEvent, AEADescAppleEvent &outReply);
  19.     virtual void NotifyAppQuitEvent() = 0;
  20. };
  21.